home *** CD-ROM | disk | FTP | other *** search
/ ShareWare OnLine 2 / ShareWare OnLine Volume 2 (CMS Software)(1993).iso / graphics / svdwg.zip / INSTALL.BAT next >
DOS Batch File  |  1993-02-17  |  538b  |  28 lines

  1. @echo off
  2. ::---------------------------------------
  3. :: file: install.bat
  4. :: Install SirlinVIEW/Lite
  5. ::---------------------------------------
  6. goto start
  7. :usage
  8. echo Usage: install [from] [to]
  9. echo Example: a:install a: c:\view
  10. goto exit
  11.  
  12. :start
  13. if (%1)==() goto usage
  14. if (%2)==() goto usage
  15.  
  16. echo Copying files from %1 to %2...
  17. copy %1\*.* %2
  18. ::if errorlevel 1 goto error
  19. echo SirlinVIEW/Lite installed!
  20. echo To run, type 
  21. echo    svdwg [filename]
  22. goto exit
  23.  
  24. :error
  25. echo Error installing SirlinVIEW/Lite
  26.  
  27. :exit
  28.